/* ###### General Styling */

@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700&family=Poppins:wght@400;500;600&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');


* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Gabarito', cursive;
    /* font-family: 'Poppins', sans-serif; */
    letter-spacing: 0.5px;
}

#Website-Spinner {
    position: fixed;
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 99999;
    background-color: #fff;
}

#Website-Spinner h4 {
    color: #3a3845;
    animation: fade 2s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

#Website-Spinner img {
    animation: spin 1.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

#Website-Spinner h4 {
    color: #3a3845;
    animation: fade 1.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

#Website-Spinner img {
    animation: spin 1.5s cubic-bezier(0.42, 0, 0.58, 1) infinite;
}

@keyframes fade {
    0% {
        opacity: 0;
    }

    50% {
        opacity: 1;
        /* Change from 100% to 1 */
    }

    100% {
        opacity: 0;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
        /* Change from rotate(0turn) to rotate(0deg) */
    }

    100% {
        transform: rotate(1turn);
    }
}

/* width */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
    background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #3a3845;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #000;
}

html {
    scroll-behavior: smooth;
}

::selection {
    color: white;
    background-color: #00ABE4;
}

.color-main {
    color: #00ABE4 !important;
}

.color-second {
    color: #3a3845 !important;
}

.color-third {
    color: #e6e6e6 !important;
}

.bg-main {
    background-color: #00ABE4 !important;
}

.bg-second {
    background-color: #3a3845 !important;
}

.bg-third {
    background-color: #e6e6e6 !important;
}

.btn-custom {
    background-color: #00ABE4;
    color: white;
    font-weight: bold;
    border: 1px solid #00ABE4;
    transition: 1s ease-in-out;
}

.shadow-custom{
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}

.text-style {
    font-family: 'Satisfy', cursive;
}

.see-more-btn {
    color: #3a3845;
}

.see-more-btn:hover {
    color: #00ABE4;
}

.btn-custom:hover {
    background-color: #00ABE4;
    color: white;
    font-weight: bold;
    border: 1px solid #00ABE4;
}

i {
    color: #00ABE4;
    font-size: 18px;
}

i:hover {
    cursor: pointer;
}

.truncate , .truncate *{
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}


/* ######### Navbar Stying */
.navbar {
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    background-color: white;
}

#Live_Time {
    font-size: 15px;
}

.brand {
    display: flex;
}

.brand_name h1 {
    font-weight: bold;
}

.brand_logo {
    display: inline-flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.nav-link {
    color: #3a3845;
    font-weight: 580;
    transition: all 0.3s ease-in-out;
}

.nav-link:hover {
    color: #00ABE4;
}


/*.dropdown-menu {*/
/*    padding: 0;*/
/*    margin-bottom: 10px;*/
/*}*/

.dropdown-item {
    color: #3a3845;
    border-radius: 5px;
}

.dropdown-item .show {
    color: #00ABE4 !important;
}

.dropdown-item:hover {
    color: #fff;
    background-color: #00ABE4;
}

.nav-item:hover .dropdown-menu {
    display: block;
}


/* ############## Marquee Styling */

.marquee-head {
    display: inline;
    background-color: #e6e6e6;
    font-weight: bold;
    padding: 12px 0px 12px 12px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.marquee-links {
    padding: 12px 0px 12px 0px;
    display: inline-block;
    animation: marquee 30s linear infinite;
    z-index: 1;
    position: absolute;
    background-color: white;
}

.marquee-links a {
    color: #3a3845;
    font-weight: bold;
    text-decoration: none;
    transition: text-decoration 0.2s;
}

.marquee-links a:hover {
    text-decoration: underline;
    color: #00ABE4;
}

/* #############################  HOME PAGE ############################ */

/* Hero Section  */

#hero-section .hero-content h2 {
    font-weight: 600;
}

.hero-img img {
    animation: moveUpDown 3s ease-in-out infinite alternate;
    mix-blend-mode: multiply;
}

@keyframes moveUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}


/* Input Fields Styling */
input,
.input-group-text,
textarea {
    box-shadow: none !important;
}

/* Blogs Images Styling  */
.card.blog_card {
    transition: 0.3s ease-in-out;
    border-radius: 8px !important;
}

.card.blog_card:hover {
    transform: scale(1.02);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
}

#blog_post {
    padding: 0px 40px;
}

.headings {
    font-weight: bold;
}

.headings::before {
    content: '#';
    opacity: 0.7;
}

.blog-img-container {
    overflow: hidden;
    position: relative;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.latest-blog-img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.latest-blog-title {
    height: 100%;
}

.latest-blog-information {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.random-blog-img-container {
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.random-blog-title {
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
    padding: 10px;
}


.random-blog-information {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px;
}

.random-blog-img-container:hover .random-blog-img {
    transform: scale(1.1);
    transition: 0.3s ease-in-out;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.carousel-inner {
    border-radius: 10px;
}

.carousel-item {
    position: relative;
}

/* User Blog Image */
.user-blog-img-container {
    overflow: hidden;
    height: 200px !important;
    width: 100% !important;


}

.user-blog-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-top-left-radius: 8px !important;
    border-top-right-radius: 8px !important;
}

.accordion-button::after {
    color: #00ABE4 !important;
}